记得上下班打卡 | git大法好,push需谨慎

Commit 8bd1a3cf authored by zhanggb's avatar zhanggb

~queue:GalaxyQueue.SQL_NFT_ORDER_FAIL_LOG;

parent 8a207da3
...@@ -78,6 +78,8 @@ public class ConsumerCommonSqlRedisStreamConfig extends RedisStreamConfig { ...@@ -78,6 +78,8 @@ public class ConsumerCommonSqlRedisStreamConfig extends RedisStreamConfig {
ConsumerGalaxySqlNftOrderInfoReceiver consumerGalaxySqlNftOrderInfoReceiver; ConsumerGalaxySqlNftOrderInfoReceiver consumerGalaxySqlNftOrderInfoReceiver;
@Autowired @Autowired
ConsumerGalaxySqlNftTradeInfoReceiver consumerGalaxySqlNftTradeInfoReceiver; ConsumerGalaxySqlNftTradeInfoReceiver consumerGalaxySqlNftTradeInfoReceiver;
@Autowired
ConsumerGalaxySqlNftOrderFailLogReceiver consumerGalaxySqlNftOrderFailLogReceiver;
/*------sweet------*/ /*------sweet------*/
@Autowired @Autowired
ConsumerSweetAnswerRdsReceiver consumerSweetAnswerRdsReceiver; ConsumerSweetAnswerRdsReceiver consumerSweetAnswerRdsReceiver;
...@@ -639,4 +641,21 @@ public class ConsumerCommonSqlRedisStreamConfig extends RedisStreamConfig { ...@@ -639,4 +641,21 @@ public class ConsumerCommonSqlRedisStreamConfig extends RedisStreamConfig {
} }
return subscriptionList; return subscriptionList;
} }
@Bean
public List<Subscription> subscriptionGalaxySqlNftOrderFailLog(RedisConnectionFactory factory) {
List<Subscription> subscriptionList = new ArrayList<>();
MQConst.GalaxyQueue stream = MQConst.GalaxyQueue.SQL_NFT_ORDER_FAIL_LOG;
this.initStream(stringRedisTemplate, stream.getKey(), stream.getGroup());
for (int i = 0; i < 1; i++) {
StreamMessageListenerContainer<String, MapRecord<String, String, String>> listenerContainer = this.buildStreamMessageListenerContainer(factory);
subscriptionList.add(listenerContainer.receiveAutoAck(
Consumer.from(stream.getGroup(), getConsumerName(stream.name() + i)),
StreamOffset.create(stream.getKey(), ReadOffset.lastConsumed()), consumerGalaxySqlNftOrderFailLogReceiver
));
listenerContainer.start();
}
return subscriptionList;
}
} }
package com.liquidnet.service.consumer.base.receiver;
import com.liquidnet.service.base.constant.MQConst;
import lombok.extern.slf4j.Slf4j;
import org.springframework.stereotype.Component;
/**
* @author AnJiabin <anjiabin@zhengzai.tv>
* @version V1.0
* @Description: TODO
* @class: ConsumerGalaxySqlNftOrderFailLogReceiver
* @Package com.liquidnet.service.consumer.slowly.receiver
* @Copyright: LightNet @ Copyright (c) 2022
* @date 2022/4/7 10:56
*/
@Slf4j
@Component
public class ConsumerGalaxySqlNftOrderFailLogReceiver extends AbstractSqlRedisReceiver {
@Override
protected String getRedisStreamKey() {
return MQConst.GalaxyQueue.SQL_NFT_ORDER_FAIL_LOG.getKey();
}
@Override
protected String getRedisStreamGroup() {
return MQConst.GalaxyQueue.SQL_NFT_ORDER_FAIL_LOG.getGroup();
}
}
package com.liquidnet.service.consumer.kylin.receiver; //package com.liquidnet.service.consumer.kylin.receiver;
//
import com.liquidnet.service.base.constant.MQConst; //import com.liquidnet.service.base.constant.MQConst;
import lombok.extern.slf4j.Slf4j; //import lombok.extern.slf4j.Slf4j;
import org.springframework.stereotype.Component; //import org.springframework.stereotype.Component;
//
/** ///**
* @author AnJiabin <anjiabin@zhengzai.tv> // * @author AnJiabin <anjiabin@zhengzai.tv>
* @version V1.0 // * @version V1.0
* @Description: TODO // * @Description: TODO
* @class: ConsumerGalaxySqlNftOrderFailLogReceiver // * @class: ConsumerGalaxySqlNftOrderFailLogReceiver
* @Package com.liquidnet.service.consumer.kylin.receiver // * @Package com.liquidnet.service.consumer.kylin.receiver
* @Copyright: LightNet @ Copyright (c) 2022 // * @Copyright: LightNet @ Copyright (c) 2022
* @date 2022/4/7 10:56 // * @date 2022/4/7 10:56
*/ // */
@Slf4j //@Slf4j
@Component //@Component
public class ConsumerGalaxySqlNftOrderFailLogReceiver extends AbstractSqlRedisReceiver { //public class ConsumerGalaxySqlNftOrderFailLogReceiver extends AbstractSqlRedisReceiver {
//
@Override // @Override
protected String getRedisStreamKey() { // protected String getRedisStreamKey() {
return MQConst.GalaxyQueue.SQL_NFT_ORDER_FAIL_LOG.getKey(); // return MQConst.GalaxyQueue.SQL_NFT_ORDER_FAIL_LOG.getKey();
} // }
//
@Override // @Override
protected String getRedisStreamGroup() { // protected String getRedisStreamGroup() {
return MQConst.GalaxyQueue.SQL_NFT_ORDER_FAIL_LOG.getGroup(); // return MQConst.GalaxyQueue.SQL_NFT_ORDER_FAIL_LOG.getGroup();
} // }
} //}
package com.liquidnet.service.consumer.slowly.config; //package com.liquidnet.service.consumer.slowly.config;
//
import com.liquidnet.common.cache.redis.config.RedisStreamConfig; //import com.liquidnet.common.cache.redis.config.RedisStreamConfig;
import com.liquidnet.service.base.constant.MQConst; //import com.liquidnet.service.base.constant.MQConst;
import com.liquidnet.service.consumer.slowly.receiver.ConsumerGalaxySqlNftOrderFailLogReceiver; //import com.liquidnet.service.consumer.slowly.receiver.ConsumerGalaxySqlNftOrderFailLogReceiver;
import org.springframework.beans.factory.annotation.Autowired; //import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.context.annotation.Bean; //import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration; //import org.springframework.context.annotation.Configuration;
import org.springframework.data.redis.connection.RedisConnectionFactory; //import org.springframework.data.redis.connection.RedisConnectionFactory;
import org.springframework.data.redis.connection.stream.Consumer; //import org.springframework.data.redis.connection.stream.Consumer;
import org.springframework.data.redis.connection.stream.MapRecord; //import org.springframework.data.redis.connection.stream.MapRecord;
import org.springframework.data.redis.connection.stream.ReadOffset; //import org.springframework.data.redis.connection.stream.ReadOffset;
import org.springframework.data.redis.connection.stream.StreamOffset; //import org.springframework.data.redis.connection.stream.StreamOffset;
import org.springframework.data.redis.core.StringRedisTemplate; //import org.springframework.data.redis.core.StringRedisTemplate;
import org.springframework.data.redis.stream.StreamMessageListenerContainer; //import org.springframework.data.redis.stream.StreamMessageListenerContainer;
import org.springframework.data.redis.stream.Subscription; //import org.springframework.data.redis.stream.Subscription;
//
import java.util.ArrayList; //import java.util.ArrayList;
import java.util.List; //import java.util.List;
//
/** ///**
* @author AnJiabin <anjiabin@zhengzai.tv> // * @author AnJiabin <anjiabin@zhengzai.tv>
* @version V1.0 // * @version V1.0
* @Description: TODO // * @Description: TODO
* @class: ConsumerGalaxySqlNftOrderFailLogConfig // * @class: ConsumerGalaxySqlNftOrderFailLogConfig
* @Package com.liquidnet.service.consumer.slowly.config // * @Package com.liquidnet.service.consumer.slowly.config
* @Copyright: LightNet @ Copyright (c) 2022 // * @Copyright: LightNet @ Copyright (c) 2022
* @date 2022/4/7 10:57 // * @date 2022/4/7 10:57
*/ // */
@Configuration //@Configuration
public class ConsumerGalaxySqlNftOrderFailLogConfig extends RedisStreamConfig { //public class ConsumerGalaxySqlNftOrderFailLogConfig extends RedisStreamConfig {
@Autowired // @Autowired
private ConsumerGalaxySqlNftOrderFailLogReceiver sqlNftOrderFailLogReceiver; // private ConsumerGalaxySqlNftOrderFailLogReceiver sqlNftOrderFailLogReceiver;
//
@Autowired // @Autowired
StringRedisTemplate stringRedisTemplate; // StringRedisTemplate stringRedisTemplate;
//
@Bean // @Bean
public List<Subscription> subscriptionSqlNftOrderFailLog(RedisConnectionFactory factory) { // public List<Subscription> subscriptionSqlNftOrderFailLog(RedisConnectionFactory factory) {
List<Subscription> subscriptionList = new ArrayList<>(); // List<Subscription> subscriptionList = new ArrayList<>();
MQConst.GalaxyQueue stream = MQConst.GalaxyQueue.SQL_NFT_ORDER_FAIL_LOG; // MQConst.GalaxyQueue stream = MQConst.GalaxyQueue.SQL_NFT_ORDER_FAIL_LOG;
//
this.initStream(stringRedisTemplate, stream.getKey(), stream.getGroup()); // this.initStream(stringRedisTemplate, stream.getKey(), stream.getGroup());
for (int i = 0; i < 1; i++) { // for (int i = 0; i < 1; i++) {
StreamMessageListenerContainer<String, MapRecord<String, String, String>> listenerContainer = this.buildStreamMessageListenerContainer(factory); // StreamMessageListenerContainer<String, MapRecord<String, String, String>> listenerContainer = this.buildStreamMessageListenerContainer(factory);
subscriptionList.add(listenerContainer.receiveAutoAck( // subscriptionList.add(listenerContainer.receiveAutoAck(
Consumer.from(stream.getGroup(), getConsumerName(stream.name() + i)), // Consumer.from(stream.getGroup(), getConsumerName(stream.name() + i)),
StreamOffset.create(stream.getKey(), ReadOffset.lastConsumed()), sqlNftOrderFailLogReceiver // StreamOffset.create(stream.getKey(), ReadOffset.lastConsumed()), sqlNftOrderFailLogReceiver
)); // ));
listenerContainer.start(); // listenerContainer.start();
} // }
return subscriptionList; // return subscriptionList;
} // }
} //}
package com.liquidnet.service.consumer.slowly.receiver; //package com.liquidnet.service.consumer.slowly.receiver;
//
import com.liquidnet.service.base.constant.MQConst; //import com.liquidnet.service.base.constant.MQConst;
import lombok.extern.slf4j.Slf4j; //import lombok.extern.slf4j.Slf4j;
import org.springframework.stereotype.Component; //import org.springframework.stereotype.Component;
//
/** ///**
* @author AnJiabin <anjiabin@zhengzai.tv> // * @author AnJiabin <anjiabin@zhengzai.tv>
* @version V1.0 // * @version V1.0
* @Description: TODO // * @Description: TODO
* @class: ConsumerGalaxySqlNftOrderFailLogReceiver // * @class: ConsumerGalaxySqlNftOrderFailLogReceiver
* @Package com.liquidnet.service.consumer.slowly.receiver // * @Package com.liquidnet.service.consumer.slowly.receiver
* @Copyright: LightNet @ Copyright (c) 2022 // * @Copyright: LightNet @ Copyright (c) 2022
* @date 2022/4/7 10:56 // * @date 2022/4/7 10:56
*/ // */
@Slf4j //@Slf4j
@Component //@Component
public class ConsumerGalaxySqlNftOrderFailLogReceiver extends AbstractSqlRedisReceiver { //public class ConsumerGalaxySqlNftOrderFailLogReceiver extends AbstractSqlRedisReceiver {
//
@Override // @Override
protected String getRedisStreamKey() { // protected String getRedisStreamKey() {
return MQConst.GalaxyQueue.SQL_NFT_ORDER_FAIL_LOG.getKey(); // return MQConst.GalaxyQueue.SQL_NFT_ORDER_FAIL_LOG.getKey();
} // }
//
@Override // @Override
protected String getRedisStreamGroup() { // protected String getRedisStreamGroup() {
return MQConst.GalaxyQueue.SQL_NFT_ORDER_FAIL_LOG.getGroup(); // return MQConst.GalaxyQueue.SQL_NFT_ORDER_FAIL_LOG.getGroup();
} // }
} //}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment