c

com.spotify.scio.transforms

GuavaAsyncLookupDoFn

abstract class GuavaAsyncLookupDoFn[A, B, C] extends BaseAsyncLookupDoFn[A, B, C, ListenableFuture[B], Try[B]] with Guava[B]

A DoFn that performs asynchronous lookup using the provided client for Guava ListenableFuture.

Source
GuavaAsyncLookupDoFn.java
Linear Supertypes
Guava[B], BaseAsyncLookupDoFn[A, B, C, ListenableFuture[B], Try[B]], Base[ListenableFuture[B], B], DoFnWithResource[A, KV[A, Try[B]], Pair[C, Cache[A, B]]], DoFn[A, KV[A, Try[B]]], HasDisplayData, Serializable, AnyRef, Any
Known Subclasses
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. GuavaAsyncLookupDoFn
  2. Guava
  3. BaseAsyncLookupDoFn
  4. Base
  5. DoFnWithResource
  6. DoFn
  7. HasDisplayData
  8. Serializable
  9. AnyRef
  10. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Instance Constructors

  1. new GuavaAsyncLookupDoFn(maxPendingRequests: Int, deduplicate: Boolean, cacheSupplier: CacheSupplier[A, B])

    Create a GuavaAsyncLookupDoFn instance.

    Create a GuavaAsyncLookupDoFn instance.

    maxPendingRequests

    maximum number of pending requests on every cloned DoFn. This prevents runner from timing out and retrying bundles.

    deduplicate

    if an attempt should be made to de-duplicate simultaneous requests for the same input

    cacheSupplier

    supplier for lookup cache.

  2. new GuavaAsyncLookupDoFn(maxPendingRequests: Int, cacheSupplier: CacheSupplier[A, B])

    Create a GuavaAsyncLookupDoFn instance.

    Create a GuavaAsyncLookupDoFn instance.

    maxPendingRequests

    maximum number of pending requests on every cloned DoFn. This prevents runner from timing out and retrying bundles.

    cacheSupplier

    supplier for lookup cache.

  3. new GuavaAsyncLookupDoFn(maxPendingRequests: Int)

    Create a GuavaAsyncLookupDoFn instance.

    Create a GuavaAsyncLookupDoFn instance.

    maxPendingRequests

    maximum number of pending requests on every cloned DoFn. This prevents runner from timing out and retrying bundles.

  4. new GuavaAsyncLookupDoFn()

Type Members

  1. abstract class FinishBundleContext extends AnyRef
    Definition Classes
    DoFn
  2. abstract class OnTimerContext extends WindowedContext
    Definition Classes
    DoFn
  3. abstract class OnWindowExpirationContext extends WindowedContext
    Definition Classes
    DoFn
  4. abstract class ProcessContext extends WindowedContext
    Definition Classes
    DoFn
  5. abstract class StartBundleContext extends AnyRef
    Definition Classes
    DoFn
  6. abstract class WindowedContext extends AnyRef
    Definition Classes
    DoFn

Abstract Value Members

  1. abstract def asyncLookup(client: C, input: A): ListenableFuture[B]

    Perform asynchronous lookup.

    Perform asynchronous lookup.

    Definition Classes
    BaseAsyncLookupDoFn
  2. abstract def getResourceType(): ResourceType

    Get resource type.

    Get resource type.

    Definition Classes
    DoFnWithResource
  3. abstract def newClient(): C

    Creates the client.

    Creates the client.

    Attributes
    protected[transforms]
    Definition Classes
    BaseAsyncLookupDoFn
  4. abstract object FinishBundleContext
    Definition Classes
    DoFn
  5. abstract object ProcessContext
    Definition Classes
    DoFn
  6. abstract object StartBundleContext
    Definition Classes
    DoFn
  7. abstract object WindowedContext
    Definition Classes
    DoFn

Concrete Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##: Int
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  4. def addCallback(future: ListenableFuture[B], onSuccess: Function[B, Void], onFailure: Function[Throwable, Void]): ListenableFuture[B]
    Definition Classes
    Guava → Base
    Annotations
    @Override()
  5. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  6. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @native()
  7. def closeResource(resource: Pair[C, Cache[A, B]]): Unit

    Close resource.

    Close resource.

    Default implementation closes AutoCloseable resource.

    Definition Classes
    BaseAsyncLookupDoFnDoFnWithResource
    Annotations
    @Override()
  8. def createResource(): Pair[C, Cache[A, B]]

    Create resource.

    Create resource.

    DoFnWithResource#getResourceType() determines how many times this is called.

    Definition Classes
    BaseAsyncLookupDoFnDoFnWithResource
    Annotations
    @Override()
  9. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  10. def equals(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef → Any
  11. def failure(throwable: Throwable): Try[B]

    Wrap output in a failed Try.

    Wrap output in a failed Try.

    Definition Classes
    GuavaAsyncLookupDoFnBaseAsyncLookupDoFn
    Annotations
    @Override()
  12. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable])
  13. def finishBundle(context: FinishBundleContext): Unit
    Definition Classes
    BaseAsyncLookupDoFn
    Annotations
    @FinishBundle()
  14. def getCallbackExecutor(): Executor

    Executor used for callbacks.

    Executor used for callbacks. Default is ForkJoinPool#commonPool(). Consider overriding this method if callbacks are blocking.

    returns

    Executor for callbacks.

    Definition Classes
    Guava
  15. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  16. def getInputTypeDescriptor(): TypeDescriptor[A]
    Definition Classes
    DoFn
  17. def getOutputTypeDescriptor(): TypeDescriptor[KV[A, Try[B]]]
    Definition Classes
    DoFn
  18. def getResource(): Pair[C, Cache[A, B]]

    Get managed resource.

    Get managed resource.

    Definition Classes
    DoFnWithResource
    Annotations
    @SuppressWarnings()
  19. def getResourceCache(): Cache[A, B]
    Definition Classes
    BaseAsyncLookupDoFn
  20. def getResourceClient(): C
    Definition Classes
    BaseAsyncLookupDoFn
  21. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  22. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  23. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  24. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  25. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  26. def populateDisplayData(builder: Builder): Unit
    Definition Classes
    DoFnWithResource → DoFn → HasDisplayData
    Annotations
    @Override()
  27. def processElement(input: A, timestamp: Instant, out: OutputReceiver[KV[A, Try[B]]], window: BoundedWindow): Unit
    Definition Classes
    BaseAsyncLookupDoFn
    Annotations
    @SuppressWarnings() @ProcessElement()
  28. def setup(): Unit
    Definition Classes
    DoFnWithResource
    Annotations
    @Setup()
  29. def startBundle(context: StartBundleContext): Unit
    Definition Classes
    BaseAsyncLookupDoFn
    Annotations
    @StartBundle()
  30. def success(output: B): Try[B]

    Wrap output in a successful Try.

    Wrap output in a successful Try.

    Definition Classes
    GuavaAsyncLookupDoFnBaseAsyncLookupDoFn
    Annotations
    @Override()
  31. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  32. def teardown(): Unit
    Definition Classes
    DoFnWithResource
    Annotations
    @Teardown()
  33. def toString(): String
    Definition Classes
    AnyRef → Any
  34. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  35. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  36. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()
  37. def waitForFutures(futures: Iterable[ListenableFuture[B]]): Unit
    Definition Classes
    Guava → Base
    Annotations
    @Override()

Deprecated Value Members

  1. def getAllowedTimestampSkew(): Duration
    Definition Classes
    DoFn
    Annotations
    @Deprecated
    Deprecated
  2. final def prepareForProcessing(): Unit
    Definition Classes
    DoFn
    Annotations
    @Deprecated
    Deprecated

Inherited from Guava[B]

Inherited from BaseAsyncLookupDoFn[A, B, C, ListenableFuture[B], Try[B]]

Inherited from Base[ListenableFuture[B], B]

Inherited from DoFnWithResource[A, KV[A, Try[B]], Pair[C, Cache[A, B]]]

Inherited from DoFn[A, KV[A, Try[B]]]

Inherited from HasDisplayData

Inherited from Serializable

Inherited from AnyRef

Inherited from Any

Ungrouped