We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
for now, ingester-go only support one type in Client.WriteObject, but it should behave like ingester-java, like:
resp, err := client.WriteObject(context.Background(), cup1, mem1, cup2, mem2)
from
func (c *Client) WriteObject(ctx context.Context, obj any) (*gpb.GreptimeResponse, error)
to
func (c *Client) WriteObject(ctx context.Context, objs ...any) (*gpb.GreptimeResponse, error)
WriteObject
The text was updated successfully, but these errors were encountered:
No branches or pull requests
for now, ingester-go only support one type in Client.WriteObject, but it should behave like ingester-java, like:
Function signature
from
to
NOTE
WriteObject
use variadic parametersThe text was updated successfully, but these errors were encountered: