首届云原生编程挑战赛1: 实现一个分布式统计和过滤的链路追踪 跑demo

比赛链接:https://tianchi.aliyun.com/competition/entrance/231790/information

这篇博客的目的是将官方提供的demo程序跑起来。demo程序写的很好,值得多多借鉴。

第一步:下载demo程序

下载地址:https://code.aliyun.com/middleware-contest-2020/tail-based-sampling

下载得到zip包,解压,使用IDEA打开,是一个标准的springboot程序。

第二步:下载测试数据

trace1.data: https://tianchi-competition.oss-cn-hangzhou.aliyuncs.com/231790/trace1_data.tar.gz?spm=5176.12281978.0.0.6ae25384hJlEU5&OSSAccessKeyId=LTAI4G7mrxYb7QrcXkTr3zzt&Expires=1593247540&Signature=YZLVJiJiJOga/KY4Z8dKVPyGJAQ=

trace2.data: https://tianchi-competition.oss-cn-hangzhou.aliyuncs.com/231790/trace2_data.tar.gz?spm=5176.12281978.0.0.6ae25384hJlEU5&OSSAccessKeyId=LTAI4G7mrxYb7QrcXkTr3zzt&Expires=1593247613&Signature=Z7PZrVG1UXnXdbO08bPv3hBCfyA=

checksum.data: https://tianchi-competition.oss-cn-hangzhou.aliyuncs.com/231790/checkSum.data?spm=5176.12281978.0.0.6ae25384hJlEU5&OSSAccessKeyId=LTAI4G7mrxYb7QrcXkTr3zzt&Expires=1593244605&Signature=dCeICVXT9RrnjCMNEq4Gpduw1XE=

评测程序: https://tianchi-competition.oss-cn-hangzhou.aliyuncs.com/231790/scoring-1.0-SNAPSHOT.jar?spm=5176.12281978.0.0.6ae25384hJlEU5&OSSAccessKeyId=LTAI4G7mrxYb7QrcXkTr3zzt&Expires=1593660531&Signature=gIOyf6LmKMErG5Xa9e/%2bjJgge5w=

第三步:修改源码

运行方式采用程序方式,获取链路数据文件采用本地获取。

只修改 com.alibaba.tailbase.clientprocess 包下的 ClientProcessData类。

修改 getPath()函数如下:

private String getPath(){
        String port = System.getProperty("server.port", "8080");
        if ("8000".equals(port)) {
            // 文件放在本地
            return "file:///home/tianchi/data/trace1.data";
            // return "http://localhost:" + CommonController.getDataSourcePort() + "/trace1.data";
        } else if ("8001".equals(port)){
            return "file:///home/tianchi/data/trace2.data";
            // return "http://localhost:" + CommonController.getDataSourcePort() + "/trace2.data";
        } else {
            return null;
        }
    }

在 run()函数的开头修改获取文件方式:

           URL url = new URL(path);
           LOGGER.info("data path:" + path);
//            HttpURLConnection httpConnection = (HttpURLConnection) url.openConnection(Proxy.NO_PROXY);
//            InputStream input = httpConnection.getInputStream();
            InputStream input = url.openStream();
            BufferedReader bf = new BufferedReader(new InputStreamReader(input));

编译打包成jar吧。

第四步:跑起来

打开四个shell界面,

shell1执行如下命令:

// jar文件路径改为自己的
java -Dserver.port=8000 -jar /home/tianchi/tailbaseSampling-1.0-SNAPSHOT.jar &

shell2执行如下命令:

// jar文件路径改为自己的
java -Dserver.port=8001 -jar /home/tianchi/tailbaseSampling-1.0-SNAPSHOT.jar &

shell3执行如下命令:

// jar文件路径改为自己的
java -Dserver.port=8002 -jar /home/tianchi/tailbaseSampling-1.0-SNAPSHOT.jar &

shell4执行如下命令:

// jar文件路径改为自己的
java -Dserver.port=9000 -DcheckSumPath=/home/tianchi/data/checkSum.data -jar /home/tianchi/data/scoring-1.0-SNAPSHOT.jar 

稍等片刻,在shell4界面看到如下结果。

图片说明

官方demo给出了比赛的一个基本思路,代码写的真好,感觉自己什么时候才能写出这么漂亮的代码。

最后有一起比赛的可以联系我。

全部评论

相关推荐

10-05 11:11
海南大学 Java
投票
理想江南137:感觉挺真诚的 感觉可以试一试
点赞 评论 收藏
分享
粗心的雪碧不放弃:纯学历问题,我这几个月也是一直优化自己的简历,后来发现优化到我自己都觉得牛逼的时候,发现面试数量也没有提升,真就纯学历问题
点赞 评论 收藏
分享
评论
点赞
收藏
分享
牛客网
牛客企业服务