Git Product home page Git Product logo

Comments (2)

JustinBeckwith avatar JustinBeckwith commented on July 16, 2024

@googleapis/ml-apis @beccasaurus so as it turns out, you can't assign an issue to a team 🤷‍♂️

from nodejs-speech.

jkwlui avatar jkwlui commented on July 16, 2024

There is a hidden setting to prevent the underlying gRPC client from retrying when getting UNAVAILABLE error from the server.

When you construct a client, you can pass a clientConfig object:

const clientConfig = {
  interfaces: {
    'google.cloud.speech.v1p1beta1.Speech': {
      retry_codes: {
        idempotent: ["DEADLINE_EXCEEDED"] // in the default setting, "UNAVAILABE" is also listed a one of the errors where the client will attempt to retry on receiving
      },
      "methods": {
        "Recognize": {},
        "LongRunningRecognize": {},
        "StreamingRecognize": {}
      }
    }
  }
}

// Create the client
this.speechClient = new speech.v1p1beta1.SpeechClient({
  clientConfig: clientConfig,
  ...
});

reference to the source code where clientConfig can be overriden.

Hope this solves your problem. Please reopen if there are anymore issues :)

from nodejs-speech.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.