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
see `Prerequisites: IAM Role and Amazon S3 Access <https://docs.aws.amazon.com/neptune/latest/userguide/bulk-load-tutorial-IAM.html>`_.
296
330
parallelism: str
297
331
Specifies the number of threads used by the bulk load process.
332
+
mode: str
333
+
The load job mode.
334
+
335
+
In ```RESUME``` mode, the loader looks for a previous load from this source, and if it finds one, resumes that load job.
336
+
If no previous load job is found, the loader stops.
337
+
338
+
In ```NEW``` mode, the creates a new load request regardless of any previous loads.
339
+
You can use this mode to reload all the data from a source after dropping previously loaded data from your Neptune cluster, or to load new data available at the same source.
340
+
341
+
In ```AUTO``` mode, the loader looks for a previous load job from the same source, and if it finds one, resumes that job, just as in ```RESUME``` mode.
298
342
format: str
299
343
The format of the data. For more information about data formats for the Neptune Loader command,
300
344
see `Using the Amazon Neptune Bulk Loader to Ingest Data <https://docs.aws.amazon.com/neptune/latest/userguide/load-api-reference-load.html#:~:text=The%20format%20of%20the%20data.%20For%20more%20information%20about%20data%20formats%20for%20the%20Neptune%20Loader%20command%2C%20see%20Using%20the%20Amazon%20Neptune%20Bulk%20Loader%20to%20Ingest%20Data.>`_.
345
+
parser_configuration: dict[str, Any], optional
346
+
An optional object with additional parser configuration values.
347
+
Each of the child parameters is also optional: ``namedGraphUri``, ``baseUri`` and ``allowEmptyStrings``.
348
+
update_single_cardinality_properties: str
349
+
An optional parameter that controls how the bulk loader
350
+
treats a new value for single-cardinality vertex or edge properties.
351
+
queue_request: str
352
+
An optional flag parameter that indicates whether the load request can be queued up or not.
353
+
354
+
If omitted or set to ``"FALSE"``, the load request will fail if another load job is already running.
355
+
dependencies: list[str], optional
356
+
An optional parameter that can make a queued load request contingent on the successful completion of one or more previous jobs in the queue.
0 commit comments