Skip to content

Commit 78648e3

Browse files
committed
.
Signed-off-by: xxchan <[email protected]>
1 parent 0e436c2 commit 78648e3

File tree

4 files changed

+7
-26
lines changed

4 files changed

+7
-26
lines changed

Makefile.toml

-5
Original file line numberDiff line numberDiff line change
@@ -274,11 +274,6 @@ do
274274
exit 1
275275
fi
276276
done
277-
278-
if (( "$(du -sk ${PREFIX_LOG} | cut -f1)" > 4000 )) ; then
279-
echo "$(tput setaf 1)ERROR: log size is significantly large ($(du -sh ${PREFIX_LOG} | cut -f1)).$(tput sgr0) Please disable unnecessary logs."
280-
exit 1
281-
fi
282277
'''
283278

284279
[tasks.doc]

ci/scripts/e2e-source-test.sh

+2-2
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ python3 -m pip install --break-system-packages requests protobuf fastavro conflu
3636
apt-get -y install jq
3737

3838
echo "--- e2e, inline test"
39-
RUST_LOG="debug,risingwave_stream=info,risingwave_batch=info,risingwave_storage=info,risingwave_meta=info" \
39+
RUST_LOG="debug,risingwave_stream=debug,risingwave_batch=info,risingwave_storage=info,risingwave_meta=info,events::stream::message::chunk=trace \
4040
risedev ci-start ci-inline-source-test
4141
risedev slt './e2e_test/source_inline/**/*.slt' -j16
4242
risedev slt './e2e_test/source_inline/**/*.slt.serial'
@@ -172,4 +172,4 @@ sleep 20
172172
risedev slt "e2e_test/webhook/webhook_source_recovery.slt"
173173
174174
risedev ci-kill
175-
echo "--- cluster killed "
175+
echo "--- cluster killed "

e2e_test/source_inline/kafka/protobuf/alter_source_shared.slt

-14
Original file line numberDiff line numberDiff line change
@@ -26,24 +26,10 @@ CREATE MATERIALIZED VIEW mv_user AS SELECT * FROM src_user;
2626
statement ok
2727
CREATE MATERIALIZED VIEW mv_user_2 AS SELECT * FROM src_user;
2828

29-
statement ok
30-
CREATE TABLE t_user WITH (
31-
${RISEDEV_KAFKA_WITH_OPTIONS_COMMON},
32-
topic = 'pb_alter_source_shared_test',
33-
scan.startup.mode = 'earliest'
34-
)
35-
FORMAT PLAIN ENCODE PROTOBUF(
36-
schema.registry = '${RISEDEV_SCHEMA_REGISTRY_URL}',
37-
message = 'test.User'
38-
);
39-
4029
# age is new field
4130
statement error
4231
SELECT age FROM mv_user;
4332

44-
statement error
45-
SELECT age FROM t_user;
46-
4733
# Push more events with extended fields
4834
system ok
4935
python3 e2e_test/source_inline/kafka/protobuf/pb.py "${RISEDEV_KAFKA_BOOTSTRAP_SERVERS}" "${RISEDEV_SCHEMA_REGISTRY_URL}" "pb_alter_source_shared_test" 5 user_with_more_fields

src/utils/runtime/src/logger.rs

+5-5
Original file line numberDiff line numberDiff line change
@@ -289,15 +289,15 @@ pub fn init_risingwave_logger(settings: LoggerSettings) {
289289
});
290290

291291
let fmt_layer = match deployment {
292-
Deployment::Ci => fmt_layer
293-
.compact()
294-
.with_filter(FilterFn::new(|metadata| metadata.is_event())) // filter-out all span-related info
295-
.boxed(),
292+
// Deployment::Ci => fmt_layer
293+
// .compact()
294+
// .with_filter(FilterFn::new(|metadata| metadata.is_event())) // filter-out all span-related info
295+
// .boxed(),
296296
Deployment::Cloud => fmt_layer
297297
.json()
298298
.map_event_format(|e| e.with_current_span(false)) // avoid duplication as there's a span list field
299299
.boxed(),
300-
Deployment::Other => {
300+
Deployment::Ci | Deployment::Other => {
301301
if env_var_is_true("ENABLE_PRETTY_LOG") {
302302
fmt_layer.pretty().boxed()
303303
} else {

0 commit comments

Comments
 (0)