Class DatastoreV1.DeleteEntity
- java.lang.Object
-
- org.apache.beam.sdk.transforms.PTransform<org.apache.beam.sdk.values.PCollection<com.google.datastore.v1.Entity>,org.apache.beam.sdk.values.PDone>
-
- org.apache.beam.sdk.io.gcp.datastore.DatastoreV1.DeleteEntity
-
- All Implemented Interfaces:
java.io.Serializable,org.apache.beam.sdk.transforms.display.HasDisplayData
- Enclosing class:
- DatastoreV1
public static class DatastoreV1.DeleteEntity extends org.apache.beam.sdk.transforms.PTransform<org.apache.beam.sdk.values.PCollection<com.google.datastore.v1.Entity>,org.apache.beam.sdk.values.PDone>APTransformthat deletesEntitiesfrom Cloud Datastore.- See Also:
DatastoreIO, Serialized Form
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description org.apache.beam.sdk.values.PDoneexpand(org.apache.beam.sdk.values.PCollection<com.google.datastore.v1.Entity> input)java.lang.StringgetDatabaseId()java.lang.StringgetProjectId()voidpopulateDisplayData(org.apache.beam.sdk.transforms.display.DisplayData.Builder builder)java.lang.StringtoString()DatastoreV1.DeleteEntitywithDatabaseId(java.lang.String databaseId)Returns a newDatastoreV1.DeleteEntitythat deletes entities from the Cloud Datastore for the specified database.DatastoreV1.DeleteEntitywithDatabaseId(org.apache.beam.sdk.options.ValueProvider<java.lang.String> databaseId)Same aswithDatabaseId(String)but with aValueProvider.DatastoreV1.DeleteEntitywithHintNumWorkers(int hintNumWorkers)Returns a newDatastoreV1.DeleteEntitywith a different worker count hint for ramp-up throttling.DatastoreV1.DeleteEntitywithHintNumWorkers(org.apache.beam.sdk.options.ValueProvider<java.lang.Integer> hintNumWorkers)Same aswithHintNumWorkers(int)but with aValueProvider.DatastoreV1.DeleteEntitywithLocalhost(java.lang.String localhost)Returns a newDatastoreV1.DeleteEntitythat deletes entities from the Cloud Datastore Emulator running locally on the specified host port.DatastoreV1.DeleteEntitywithProjectId(java.lang.String projectId)Returns a newDatastoreV1.DeleteEntitythat deletes entities from the Cloud Datastore for the specified project.DatastoreV1.DeleteEntitywithProjectId(org.apache.beam.sdk.options.ValueProvider<java.lang.String> projectId)Same aswithProjectId(String)but with aValueProvider.DatastoreV1.DeleteEntitywithRampupThrottlingDisabled()Returns a newDatastoreV1.DeleteEntitythat does not throttle during ramp-up.DatastoreV1.DeleteEntityWithSummarywithResults()ReturnsDatastoreV1.DeleteEntityWithSummarytransform which can be used inWait.on(PCollection[])to wait until all data is deleted.-
Methods inherited from class org.apache.beam.sdk.transforms.PTransform
addAnnotation, compose, compose, getAdditionalInputs, getAnnotations, getDefaultOutputCoder, getDefaultOutputCoder, getDefaultOutputCoder, getKindString, getName, getResourceHints, setDisplayData, setResourceHints, validate, validate
-
-
-
-
Method Detail
-
withProjectId
public DatastoreV1.DeleteEntity withProjectId(java.lang.String projectId)
Returns a newDatastoreV1.DeleteEntitythat deletes entities from the Cloud Datastore for the specified project.
-
withDatabaseId
public DatastoreV1.DeleteEntity withDatabaseId(java.lang.String databaseId)
Returns a newDatastoreV1.DeleteEntitythat deletes entities from the Cloud Datastore for the specified database.
-
withProjectId
public DatastoreV1.DeleteEntity withProjectId(org.apache.beam.sdk.options.ValueProvider<java.lang.String> projectId)
Same aswithProjectId(String)but with aValueProvider.
-
withDatabaseId
public DatastoreV1.DeleteEntity withDatabaseId(org.apache.beam.sdk.options.ValueProvider<java.lang.String> databaseId)
Same aswithDatabaseId(String)but with aValueProvider.
-
withLocalhost
public DatastoreV1.DeleteEntity withLocalhost(java.lang.String localhost)
Returns a newDatastoreV1.DeleteEntitythat deletes entities from the Cloud Datastore Emulator running locally on the specified host port.
-
withRampupThrottlingDisabled
public DatastoreV1.DeleteEntity withRampupThrottlingDisabled()
Returns a newDatastoreV1.DeleteEntitythat does not throttle during ramp-up.
-
withHintNumWorkers
public DatastoreV1.DeleteEntity withHintNumWorkers(int hintNumWorkers)
Returns a newDatastoreV1.DeleteEntitywith a different worker count hint for ramp-up throttling. Value is ignored if ramp-up throttling is disabled.
-
withHintNumWorkers
public DatastoreV1.DeleteEntity withHintNumWorkers(org.apache.beam.sdk.options.ValueProvider<java.lang.Integer> hintNumWorkers)
Same aswithHintNumWorkers(int)but with aValueProvider.
-
withResults
public DatastoreV1.DeleteEntityWithSummary withResults()
ReturnsDatastoreV1.DeleteEntityWithSummarytransform which can be used inWait.on(PCollection[])to wait until all data is deleted.Example: delete a
PCollectionfrom one database and then from another database, making sure that deleting a window of data to the second database starts only after the respective window has been fully deleted from the first database.PCollection<Entity> entities = ... ; PCollection<DatastoreV1.WriteSuccessSummary> deleteSummary = entities.apply(DatastoreIO.v1().deleteEntity().withProjectId(project).withResults());
-
toString
public java.lang.String toString()
- Overrides:
toStringin classorg.apache.beam.sdk.transforms.PTransform<org.apache.beam.sdk.values.PCollection<com.google.datastore.v1.Entity>,org.apache.beam.sdk.values.PDone>
-
populateDisplayData
public void populateDisplayData(org.apache.beam.sdk.transforms.display.DisplayData.Builder builder)
- Specified by:
populateDisplayDatain interfaceorg.apache.beam.sdk.transforms.display.HasDisplayData- Overrides:
populateDisplayDatain classorg.apache.beam.sdk.transforms.PTransform<org.apache.beam.sdk.values.PCollection<com.google.datastore.v1.Entity>,org.apache.beam.sdk.values.PDone>
-
getProjectId
public java.lang.String getProjectId()
-
getDatabaseId
public java.lang.String getDatabaseId()
-
expand
public org.apache.beam.sdk.values.PDone expand(org.apache.beam.sdk.values.PCollection<com.google.datastore.v1.Entity> input)
- Specified by:
expandin classorg.apache.beam.sdk.transforms.PTransform<org.apache.beam.sdk.values.PCollection<com.google.datastore.v1.Entity>,org.apache.beam.sdk.values.PDone>
-
-