Package io.hstream

Interface HStreamClient

    • Method Detail

      • createStream

        void createStream​(String stream)
        Create a new stream with 1 replicas.
        Parameters:
        stream - the name of stream
      • createStream

        void createStream​(String stream,
                          short replicationFactor)
        Create a new stream.
        Parameters:
        stream - the name of the stream
        replicationFactor - replication factor of the stream
      • createStream

        void createStream​(String stream,
                          short replicationFactor,
                          int shardCount)
        Create a new stream.
        Parameters:
        stream - the name of the stream
        replicationFactor - replication factor of the stream
        shardCount - number of shards in the stream
      • createStream

        void createStream​(String stream,
                          short replicationFactor,
                          int shardCount,
                          int backlogDuration)
        Create a new stream.
        Parameters:
        stream - the name of the stream
        replicationFactor - replication factor of the stream
        shardCount - number of shards in the stream
        backlogDuration - backlog duration(in seconds) of the stream
      • createStream

        void createStream​(Stream stream)
        Create a new stream.
        Parameters:
        stream - Stream Object, you should use Stream.Builder to build it.
      • listShards

        List<Shard> listShards​(String streamName)
        List shards in a stream.
        Parameters:
        streamName - the name of the stream
        Returns:
        a list of Shards.
      • deleteStream

        void deleteStream​(String stream)
        Delete the specified stream with streamName.
        Parameters:
        stream - the name of stream
      • deleteStream

        void deleteStream​(String stream,
                          boolean force)
        Delete the specified stream with streamName.
        Parameters:
        stream - the name of stream
        force - the flag whether to enable force deletion
      • listStreams

        List<Stream> listStreams()
        List all streams.
        Returns:
        a list of Streams
      • createSubscription

        void createSubscription​(Subscription subscription)
        Create a new Subscription.
        Parameters:
        subscription - Subscription
      • deleteSubscription

        void deleteSubscription​(String subscriptionId)
        Delete the specified subscription with subscriptionId.
        Parameters:
        subscriptionId - the id of the subscription to be deleted
      • deleteSubscription

        void deleteSubscription​(String subscriptionId,
                                boolean force)
        Delete the specified subscription with subscriptionId.
        Parameters:
        subscriptionId - the id of the subscription to be deleted
        force - the flag whether to enable force deletion
      • describeCluster

        Cluster describeCluster()
      • deleteQuery

        void deleteQuery​(String name)
      • terminateQuery

        void terminateQuery​(String name)
      • deleteView

        void deleteView​(String name)
      • executeViewQuery

        List<HRecord> executeViewQuery​(String sql)
        only support to execute view query, e.g. `select * from view1 where id = 1;`
        Parameters:
        sql - select view sql
        Returns:
        all HRecord result set
      • getConnectorLogs

        String getConnectorLogs​(String name,
                                int begin,
                                int count)
      • alterConnectorConfig

        void alterConnectorConfig​(String name,
                                  String config)
      • deleteConnector

        void deleteConnector​(String name)
      • getTailRecordId

        String getTailRecordId​(String streamName,
                               long shardId)