sift_stream 0.8.2

A robust Sift telemetry streaming library
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
use std::fs;
use std::time::Duration;

use crate::TimeValue;
use crate::backup::DiskBackupPolicy;
use crate::{
    ChannelValue, Flow, FlowBuilder, IngestionConfigForm, RecoveryStrategy, RunForm,
    SiftStreamBuilder,
};
use sift_rs::common::r#type::v1::ChannelDataType;
use sift_rs::ingestion_configs::v2::{ChannelConfig, FlowConfig};
use tempdir::TempDir;
use tracing_test::traced_test;

#[tokio::test]
async fn test_sift_stream_builder_backup_manager_directory_naming_with_run() {
    let backups_dir = uuid::Uuid::new_v4().to_string();

    let tmp_dir = TempDir::new(&backups_dir).expect("failed to creat tempdir");
    let tmp_dir_path = tmp_dir.path();

    let ingestion_config = IngestionConfigForm {
        asset_name: "test_asset".to_string(),
        client_key: "test_client_key".to_string(),
        flows: vec![],
    };
    let run = RunForm {
        name: "test_run".to_string(),
        client_key: "test_client_key".to_string(),
        description: None,
        tags: None,
        metadata: None,
    };

    let disk_backup_policy = DiskBackupPolicy {
        backups_dir: Some(tmp_dir_path.to_path_buf()),
        retain_backups: true,
        ..Default::default()
    };
    let retry_policy = crate::RetryPolicy::default();
    let (grpc_channel, _mock_service) = crate::test::create_mock_grpc_channel_with_service().await;

    let mut sift_stream = SiftStreamBuilder::from_channel(grpc_channel)
        .ingestion_config(ingestion_config)
        .attach_run(run)
        .recovery_strategy(RecoveryStrategy::RetryWithBackups {
            retry_policy,
            disk_backup_policy,
        })
        .metrics_streaming_interval(None)
        .build()
        .await
        .expect("failed to build sift stream");

    for data in 0..100 {
        sift_stream
            .send(Flow::new(
                "some_flow",
                TimeValue::now(),
                &[ChannelValue::new("some_channel", data)],
            ))
            .await
            .expect("failed to send data to backup task");
    }

    // Finish the stream to ensure that the backup manager is shutdown and the backup files are processed.
    tokio::time::timeout(Duration::from_secs(10), async {
        assert!(
            sift_stream.finish().await.is_ok(),
            "failed to finish sift stream"
        );
    })
    .await
    .expect("timeout waiting for sift stream to finish");

    let test_dir = fs::read_dir(tmp_dir_path)
        .expect("failed to read backups directory")
        .collect::<Vec<_>>();
    assert_eq!(test_dir.len(), 1, "{:?}", test_dir);

    // The first subdirectory should be the asset name.
    let asset_dir = test_dir[0].as_ref().expect("failed to get file");
    assert!(asset_dir.path().is_dir(), "expected file to be a directory");

    let asset_dir_path = asset_dir.path();
    let asset_dir_file_name = asset_dir_path.file_name().expect("failed to get file name");
    assert_eq!(asset_dir_file_name, "test_asset");

    // The next subdirectory in the asset directory should be the run name.
    let asset_dir_contents = fs::read_dir(asset_dir_path)
        .expect("failed to read asset directory")
        .collect::<Vec<_>>();
    assert_eq!(asset_dir_contents.len(), 1);

    let run_dir = asset_dir_contents[0].as_ref().expect("failed to get file");
    assert!(run_dir.path().is_dir(), "expected file to be a directory");

    let run_dir_path = run_dir.path();
    let run_dir_name = run_dir_path.file_name().expect("failed to get file name");
    assert_eq!(run_dir_name, "test_run");
}

#[tokio::test]
async fn test_sift_stream_builder_backup_manager_directory_naming_no_run() {
    let backups_dir = uuid::Uuid::new_v4().to_string();

    let tmp_dir = TempDir::new(&backups_dir).expect("failed to creat tempdir");
    let tmp_dir_path = tmp_dir.path();

    let ingestion_config = IngestionConfigForm {
        asset_name: "test_asset".to_string(),
        client_key: "test_client_key".to_string(),
        flows: vec![],
    };
    let disk_backup_policy = DiskBackupPolicy {
        backups_dir: Some(tmp_dir_path.to_path_buf()),
        retain_backups: true,
        ..Default::default()
    };
    let retry_policy = crate::RetryPolicy::default();
    let (grpc_channel, _mock_service) = crate::test::create_mock_grpc_channel_with_service().await;

    let mut sift_stream = SiftStreamBuilder::from_channel(grpc_channel)
        .ingestion_config(ingestion_config)
        .recovery_strategy(RecoveryStrategy::RetryWithBackups {
            retry_policy,
            disk_backup_policy,
        })
        .metrics_streaming_interval(None)
        .build()
        .await
        .expect("failed to build sift stream");

    for data in 0..100 {
        sift_stream
            .send(Flow::new(
                "some_flow",
                TimeValue::now(),
                &[ChannelValue::new("some_channel", data)],
            ))
            .await
            .expect("failed to send data to backup task");
    }

    // Finish the stream to ensure that the backup manager is shutdown and the backup files are processed.
    tokio::time::timeout(Duration::from_secs(10), async {
        assert!(
            sift_stream.finish().await.is_ok(),
            "failed to finish sift stream"
        );
    })
    .await
    .expect("timeout waiting for sift stream to finish");

    let test_dir = fs::read_dir(tmp_dir_path)
        .expect("failed to read backups directory")
        .collect::<Vec<_>>();
    assert_eq!(test_dir.len(), 1);

    // The first subdirectory should be the asset name.
    let asset_dir = test_dir[0].as_ref().expect("failed to get file");
    assert!(asset_dir.path().is_dir(), "expected file to be a directory");

    let asset_dir_path = asset_dir.path();
    let asset_dir_file_name = asset_dir_path.file_name().expect("failed to get file name");
    assert_eq!(asset_dir_file_name, "test_asset");

    // Since there was no run provided, there are no subdirectories in the asset directory.
    let asset_dir_contents = fs::read_dir(asset_dir_path)
        .expect("failed to read asset directory")
        .collect::<Vec<_>>();
    assert_eq!(asset_dir_contents.len(), 1);
    assert!(
        asset_dir_contents[0]
            .as_ref()
            .expect("failed to get file")
            .path()
            .is_file(),
        "expected to be a file",
    );
}

#[tokio::test]
#[traced_test]
async fn test_sift_stream_drop_without_finish() {
    let backups_dir = uuid::Uuid::new_v4().to_string();

    let tmp_dir = TempDir::new(&backups_dir).expect("failed to creat tempdir");
    let tmp_dir_path = tmp_dir.path();

    let ingestion_config = IngestionConfigForm {
        asset_name: "test_asset".to_string(),
        client_key: "test_client_key".to_string(),
        flows: vec![],
    };
    let run = RunForm {
        name: "test_run".to_string(),
        client_key: "test_client_key".to_string(),
        description: None,
        tags: None,
        metadata: None,
    };

    let disk_backup_policy = DiskBackupPolicy {
        backups_dir: Some(tmp_dir_path.to_path_buf()),
        retain_backups: true,
        ..Default::default()
    };
    let retry_policy = crate::RetryPolicy::default();
    let (grpc_channel, _mock_service) = crate::test::create_mock_grpc_channel_with_service().await;

    let sift_stream = SiftStreamBuilder::from_channel(grpc_channel)
        .ingestion_config(ingestion_config)
        .attach_run(run)
        .recovery_strategy(RecoveryStrategy::RetryWithBackups {
            retry_policy,
            disk_backup_policy,
        })
        .build()
        .await
        .expect("failed to build sift stream");

    drop(sift_stream);

    let final_check = async move {
        while !logs_contain("ingestion task shutting down")
            && !logs_contain("re-ingestion task shutting down")
            && !logs_contain("backup manager shutting down")
        {
            tokio::time::sleep(Duration::from_millis(100)).await;
        }
    };

    tokio::time::timeout(Duration::from_secs(10), final_check)
        .await
        .expect("timeout waiting for tasks to shutdown");
}

#[tokio::test]
async fn test_sift_stream_builder_load_ingestion_config_with_no_flows() {
    let backups_dir = uuid::Uuid::new_v4().to_string();

    let tmp_dir = TempDir::new(&backups_dir).expect("failed to creat tempdir");
    let tmp_dir_path = tmp_dir.path();

    let ingestion_config = IngestionConfigForm {
        asset_name: "already_exists_asset".to_string(),
        client_key: "already_exists_client_key".to_string(),
        flows: vec![],
    };
    let disk_backup_policy = DiskBackupPolicy {
        backups_dir: Some(tmp_dir_path.to_path_buf()),
        retain_backups: true,
        ..Default::default()
    };
    let retry_policy = crate::RetryPolicy::default();
    let (grpc_channel, _mock_service) = crate::test::create_mock_grpc_channel_with_service().await;

    let mut sift_stream = SiftStreamBuilder::from_channel(grpc_channel)
        .ingestion_config(ingestion_config)
        .recovery_strategy(RecoveryStrategy::RetryWithBackups {
            retry_policy,
            disk_backup_policy,
        })
        .build()
        .await
        .expect("failed to build sift stream");

    // The mock sift server should have returned 1 flow.
    let flows = sift_stream.get_flows();
    assert_eq!(flows.len(), 1);

    let existing_flow = FlowConfig {
        name: "already_exists_flow".to_string(),
        channels: vec![ChannelConfig {
            name: "channel1".to_string(),
            data_type: ChannelDataType::Double.into(),
            ..Default::default()
        }],
    };

    // Add the existing flow again to ensure it is not added again.
    assert!(sift_stream.add_new_flows(&[existing_flow]).await.is_ok());
    let flows = sift_stream.get_flows();
    assert_eq!(flows.len(), 1);

    sift_stream
        .finish()
        .await
        .expect("failed to finish sift stream");
}

#[tokio::test]
async fn test_sift_stream_builder_load_ingestion_config_with_flows() {
    let backups_dir = uuid::Uuid::new_v4().to_string();

    let tmp_dir = TempDir::new(&backups_dir).expect("failed to creat tempdir");
    let tmp_dir_path = tmp_dir.path();

    let existing_flow = FlowConfig {
        name: "already_exists_flow".to_string(),
        channels: vec![ChannelConfig {
            name: "channel1".to_string(),
            data_type: ChannelDataType::Double.into(),
            ..Default::default()
        }],
    };

    let ingestion_config = IngestionConfigForm {
        asset_name: "test_asset".to_string(),
        client_key: "test_client_key".to_string(),
        flows: vec![existing_flow.clone()],
    };
    let disk_backup_policy = DiskBackupPolicy {
        backups_dir: Some(tmp_dir_path.to_path_buf()),
        retain_backups: true,
        ..Default::default()
    };
    let retry_policy = crate::RetryPolicy::default();
    let (grpc_channel, _mock_service) = crate::test::create_mock_grpc_channel_with_service().await;

    let mut sift_stream = SiftStreamBuilder::from_channel(grpc_channel)
        .ingestion_config(ingestion_config)
        .recovery_strategy(RecoveryStrategy::RetryWithBackups {
            retry_policy,
            disk_backup_policy,
        })
        .build()
        .await
        .expect("failed to build sift stream");

    // The mock sift server should have returned 1 flow.
    let flows = sift_stream.get_flows();
    assert_eq!(flows.len(), 1);

    // Add the existing flow again to ensure it is not added again.
    assert!(sift_stream.add_new_flows(&[existing_flow]).await.is_ok());
    let flows = sift_stream.get_flows();
    assert_eq!(flows.len(), 1);
}

#[tokio::test]
async fn test_sift_stream_builder_load_ingestion_config_with_new_flows() {
    let backups_dir = uuid::Uuid::new_v4().to_string();

    let tmp_dir = TempDir::new(&backups_dir).expect("failed to creat tempdir");
    let tmp_dir_path = tmp_dir.path();

    let new_flow = FlowConfig {
        name: "new_flow".to_string(),
        channels: vec![ChannelConfig {
            name: "channel-new".to_string(),
            data_type: ChannelDataType::Uint32.into(),
            ..Default::default()
        }],
    };

    let ingestion_config = IngestionConfigForm {
        asset_name: "test_asset".to_string(),
        client_key: "test_client_key".to_string(),
        flows: vec![new_flow.clone()],
    };
    let disk_backup_policy = DiskBackupPolicy {
        backups_dir: Some(tmp_dir_path.to_path_buf()),
        retain_backups: true,
        ..Default::default()
    };
    let retry_policy = crate::RetryPolicy::default();
    let (grpc_channel, _mock_service) = crate::test::create_mock_grpc_channel_with_service().await;

    let mut sift_stream = SiftStreamBuilder::from_channel(grpc_channel)
        .ingestion_config(ingestion_config)
        .recovery_strategy(RecoveryStrategy::RetryWithBackups {
            retry_policy,
            disk_backup_policy,
        })
        .build()
        .await
        .expect("failed to build sift stream");

    // The mock sift server should have returned 1 flow.
    let flows = sift_stream.get_flows();
    assert_eq!(flows.len(), 1);

    // Add the existing flow again to ensure it is not added again.
    assert!(sift_stream.add_new_flows(&[new_flow]).await.is_ok());
    let flows = sift_stream.get_flows();
    assert_eq!(flows.len(), 1);

    // Add another new flow to ensure it is added.
    let new_flow2 = FlowConfig {
        name: "new_flow2".to_string(),
        channels: vec![ChannelConfig {
            name: "channel-new2".to_string(),
            data_type: ChannelDataType::Uint32.into(),
            ..Default::default()
        }],
    };
    assert!(sift_stream.add_new_flows(&[new_flow2]).await.is_ok());
    let flows = sift_stream.get_flows();
    assert_eq!(flows.len(), 2);
}

#[tokio::test(flavor = "current_thread")]
async fn test_sift_stream_ingestion_and_backup_channels_fill_up() {
    let backups_dir = uuid::Uuid::new_v4().to_string();

    let tmp_dir = TempDir::new(&backups_dir).expect("failed to creat tempdir");
    let tmp_dir_path = tmp_dir.path();

    let existing_flow = FlowConfig {
        name: "already_exists_flow".to_string(),
        channels: vec![ChannelConfig {
            name: "channel1".to_string(),
            data_type: ChannelDataType::Double.into(),
            ..Default::default()
        }],
    };

    let ingestion_config = IngestionConfigForm {
        asset_name: "test_asset".to_string(),
        client_key: "test_client_key".to_string(),
        flows: vec![existing_flow],
    };
    let disk_backup_policy = DiskBackupPolicy {
        backups_dir: Some(tmp_dir_path.to_path_buf()),
        retain_backups: true,
        ..Default::default()
    };
    let retry_policy = crate::RetryPolicy::default();
    let (grpc_channel, _mock_service) = crate::test::create_mock_grpc_channel_with_service().await;

    let mut sift_stream = SiftStreamBuilder::from_channel(grpc_channel)
        .ingestion_config(ingestion_config)
        .recovery_strategy(RecoveryStrategy::RetryWithBackups {
            retry_policy,
            disk_backup_policy,
        })
        .metrics_streaming_interval(None)
        .ingestion_data_channel_capacity(1)
        .backup_data_channel_capacity(1)
        .build()
        .await
        .expect("failed to build sift stream");

    let descriptor = sift_stream
        .get_flow_descriptor("already_exists_flow")
        .expect("failed to get flow descriptor");

    // Send a burst of messages that will cause the ingestion and backup channels to fill up.
    //
    // Since this test is running in single-threded mode, and `send_requests_nonblocking` is not async,
    // sending all the messages should occur before the background tasks have a chance to run
    // and create space.
    for data in 0..100 {
        let mut builder = FlowBuilder::new(&descriptor);
        assert!(builder.set_with_key("channel1", data as f64).is_ok());

        assert!(
            sift_stream
                .send_requests(vec![builder.request(TimeValue::now())])
                .await
                .is_ok(),
            "failed to send request"
        );
    }

    // Finish the stream to ensure that the backup manager is shutdown and the backup files are processed.
    tokio::time::timeout(Duration::from_secs(10), async {
        assert!(
            sift_stream.finish().await.is_ok(),
            "failed to finish sift stream"
        );
    })
    .await
    .expect("timeout waiting for sift stream to finish");
}