You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The builder is now configurable via the objects.yaml. With this, the change can
got to a minor version and the new identifier and behavior can be tested.
@@ -56,13 +57,6 @@ class NodeIndexer extends AbstractNodeIndexer implements BulkNodeIndexerInterfac
56
57
*/
57
58
protected$nodeTypeMappingBuilder;
58
59
59
-
/**
60
-
* Optional postfix for the index, e.g. to have different indexes by timestamp.
61
-
*
62
-
* @var string
63
-
*/
64
-
protected$indexNamePostfix = '';
65
-
66
60
/**
67
61
* @Flow\Inject
68
62
* @var ErrorHandlingService
@@ -129,18 +123,6 @@ class NodeIndexer extends AbstractNodeIndexer implements BulkNodeIndexerInterfac
129
123
*/
130
124
protected$indexConfiguration;
131
125
132
-
/**
133
-
* The current Elasticsearch bulk request, in the format required by http://www.elasticsearch.org/guide/en/elasticsearch/reference/current/docs-bulk.html
134
-
*
135
-
* @var array
136
-
*/
137
-
protected$currentBulkRequest = [];
138
-
139
-
/**
140
-
* @var boolean
141
-
*/
142
-
protected$bulkProcessing = false;
143
-
144
126
/**
145
127
* @Flow\Inject
146
128
* @var DimensionsService
@@ -153,12 +135,30 @@ class NodeIndexer extends AbstractNodeIndexer implements BulkNodeIndexerInterfac
153
135
*/
154
136
protected$nodeTypeIndexingConfiguration;
155
137
138
+
/**
139
+
* @Flow\Inject
140
+
* @var DocumentIdentifierGeneratorInterface
141
+
*/
142
+
protected$documentIdentifierGenerator;
143
+
156
144
/**
157
145
* @Flow\Inject
158
146
* @var ErrorStorageInterface
159
147
*/
160
148
protected$errorStorage;
161
149
150
+
/**
151
+
* The current Elasticsearch bulk request, in the format required by http://www.elasticsearch.org/guide/en/elasticsearch/reference/current/docs-bulk.html
152
+
*/
153
+
protectedarray$currentBulkRequest = [];
154
+
155
+
/**
156
+
* Optional postfix for the index, e.g. to have different indexes by timestamp.
0 commit comments