Git Product home page Git Product logo

Comments (4)

sonus21 avatar sonus21 commented on August 18, 2024

Hi @longveeshaw
It's guaranteed that a message would be delivered at least once to the application/listener(s). It comes with a graceful shutdown, all listeners would be stopped at the time of shutdown. The time takes for shutdown can vary based on the number of currently running tasks, application shutdown waits for the executing task to be executed/terminated but in some cases it might timeout as shutdown process can't be halt for many minutes or so.

Could you provide some more context about ?

Can the queue stop or start according the configuration?

from rqueue.

longveeshaw avatar longveeshaw commented on August 18, 2024

Hi @longveeshaw
It's guaranteed that a message would be delivered at least once to the application/listener(s). It comes with a graceful shutdown, all listeners would be stopped at the time of shutdown. The time takes for shutdown can vary based on the number of currently running tasks, application shutdown waits for the executing task to be executed/terminated but in some cases it might timeout as shutdown process can't be hold for many minutes or so.

Could you provide some more context about ?

Can the queue stop or start according the configuration?

@sonus21

Just like kafka :
MessageListenerContainer listenerContainer = kafkaListenerEndpointRegistry.getListenerContainer(listenerId);
// if need to start listen,just write listenerContainer.start()
listenerContainer..start();
// if need to stop listen,just write listenerContainer.stop;
listenerContainer.stop();

if this command is available,when we need to deploy a new application,we can first stop all listeners,then stop old application,after the new application started, just start the listeners again.

from rqueue.

sonus21 avatar sonus21 commented on August 18, 2024

IIUC, you're looking for manual start and stop of container, It does support manual start and stop, but not at consumer level, it will start all consumer and stop all consumers/listeners.

Create SimpleRqueueListenerContainerFactory with autoStart=false, this will create a container of type RqueueMessageListenerContainer. Once this bean is created with auto start is false, then you can control containers using start and stop methods.

 @Bean
  public SimpleRqueueListenerContainerFactory simpleRqueueListenerContainerFactory(
      RedisConnectionFactory redisConnectionFactory, RqueueMessageHandler rqueueMessageHandler) {
    SimpleRqueueListenerContainerFactory factory = new SimpleRqueueListenerContainerFactory();
    factory.setAutoStartup(false);
    factory.setRedisConnectionFactory(redisConnectionFactory);
    factory.setRqueueMessageHandler(rqueueMessageHandler);
    return factory;
  }

This will create a bean of typeRqueueMessageListenerContainer , you can use that bean in your application to manually start and stop.

public class BootstrapController {
    @Autowired RqueueMessageListenerContainer rqueueMessageListenerContainer;

    // ... 
    public void start() {
      /// do something
      rqueueMessageListenerContainer.start();
    }
   public void stop() {
      // do something
      rqueueMessageListenerContainer.stop();
    }
  }

from rqueue.

longveeshaw avatar longveeshaw commented on August 18, 2024

support

ok,i will have a try. Tks

from rqueue.

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.