18
18
package org .apache .ignite .compatibility .persistence ;
19
19
20
20
import java .util .List ;
21
- import javax .cache .Cache ;
22
21
import org .apache .ignite .Ignite ;
23
22
import org .apache .ignite .IgniteCache ;
24
- import org .apache .ignite .IgniteCheckedException ;
25
- import org .apache .ignite .cache .CacheEntry ;
26
23
import org .apache .ignite .cluster .ClusterState ;
27
24
import org .apache .ignite .compatibility .testframework .junits .IgniteCompatibilityAbstractTest ;
28
25
import org .apache .ignite .configuration .DataStorageConfiguration ;
29
26
import org .apache .ignite .configuration .IgniteConfiguration ;
30
27
import org .apache .ignite .internal .IgniteEx ;
31
- import org .apache .ignite .internal .util .typedef .internal .U ;
32
28
import org .apache .ignite .lang .IgniteInClosure ;
29
+ import org .jetbrains .annotations .NotNull ;
33
30
import org .junit .Test ;
34
31
35
32
/**
@@ -42,6 +39,9 @@ public class SnapshotCompatibilityTest extends IgniteCompatibilityAbstractTest {
42
39
/** */
43
40
private static final String SNAPSHOT_NAME = "test_snapshot" ;
44
41
42
+ /** */
43
+ public static final String CACHE_NAME = "organizations" ;
44
+
45
45
/**
46
46
*
47
47
*/
@@ -54,17 +54,15 @@ public void testSnapshotRestore() throws Exception {
54
54
55
55
cleanPersistenceDir (true );
56
56
57
- IgniteEx curIdn = startGrid (0 );
57
+ IgniteEx curIgn = startGrid (getCurrentIgniteConfiguration ( null ) );
58
58
59
- curIdn . snapshot ().restoreSnapshot ( SNAPSHOT_NAME , List . of ( "organizations" )). get ( );
59
+ curIgn . cluster ().state ( ClusterState . ACTIVE );
60
60
61
- IgniteCache < String , Integer > cache = curIdn . cache ( "organizations" );
61
+ curIgn . snapshot (). restoreSnapshot ( SNAPSHOT_NAME , List . of ( CACHE_NAME )). get ( );
62
62
63
- for (int i = 0 ; i < 100_000 ; i ++) {
63
+ IgniteCache <String , Integer > cache = curIgn .cache (CACHE_NAME );
64
+ for (int i = 0 ; i < 10_000 ; i ++)
64
65
assertTrue (cache .containsKey ("organization-" + i ));
65
- }
66
-
67
- System .out .println ("Cache read end" );
68
66
}
69
67
finally {
70
68
stopAllGrids ();
@@ -73,6 +71,23 @@ public void testSnapshotRestore() throws Exception {
73
71
}
74
72
}
75
73
74
+ /**
75
+ *
76
+ */
77
+ private @ NotNull IgniteConfiguration getCurrentIgniteConfiguration (String consistentId ) throws Exception {
78
+ IgniteConfiguration cfg = getConfiguration (getTestIgniteInstanceName (0 ));
79
+
80
+ DataStorageConfiguration storageCfg = new DataStorageConfiguration ();
81
+
82
+ storageCfg .getDefaultDataRegionConfiguration ().setPersistenceEnabled (true );
83
+
84
+ cfg .setDataStorageConfiguration (storageCfg );
85
+
86
+ cfg .setConsistentId (consistentId );
87
+
88
+ return cfg ;
89
+ }
90
+
76
91
/**
77
92
*
78
93
*/
@@ -86,8 +101,6 @@ private static class ConfigurationClosure implements IgniteInClosure<IgniteConfi
86
101
igniteConfiguration .setDataStorageConfiguration (storageCfg );
87
102
88
103
igniteConfiguration .setConsistentId (null );
89
-
90
- System .out .println ("ConfigurationClosure.apply" );
91
104
}
92
105
}
93
106
@@ -99,12 +112,11 @@ private static class PostStartupClosure implements IgniteInClosure<Ignite> {
99
112
@ Override public void apply (Ignite ignite ) {
100
113
ignite .cluster ().state (ClusterState .ACTIVE );
101
114
102
- IgniteCache <String , Integer > organizations = ignite .createCache ("organizations" );
103
- for (int i = 0 ; i < 100_000 ; i ++)
115
+ IgniteCache <String , Integer > organizations = ignite .createCache (CACHE_NAME );
116
+ for (int i = 0 ; i < 10_000 ; i ++)
104
117
organizations .put ("organization-" + i , i );
105
118
106
119
ignite .snapshot ().createSnapshot (SNAPSHOT_NAME ).get ();
107
- System .out .println ("Snapshot has taken" );
108
120
}
109
121
}
110
122
}
0 commit comments