前言:
搜狐云景作为搜狐的paas平台,在2014年5月22日的云计算大会上正式发布了公测。初测,注册用户必须先申请邀请码参与公测会赠送用户100元电子券,经过实名认证之后会再赠送100电子券,目测可以对试用用户基本app够跑半年。
除了用户中心的一些基本安全信息设置和各种账单外,我想主要对其控制台的使用进行研究一番。
废话不多说,在绑定邮箱并充值10元成正式用户之后,无阻挡进行各种测试吧。
dashboard很清新干净,是一个对用户基本消费情况和使用资源服务的基本概览。
---------------------------------------------------
一、来创建个应用
这里需要选择选择应用的基本类型是web或后台worker;
运行环境需要事先选择好,其java就提供三种不同的运行环境,支持语言类型也挺多的,基本的主流语言都有支持到了;
实例类型也就是容器类型,使用linux lxc技术,提供了六种不同的容器来运行我们的程序。
创建成功之后,会有一些默认的配置。
- 域名:cstest.sohuapps.com
- 版本:1
- 实例配置:3-8,可以自定义配置
- 容器类型:C2,可以自定义配置
- 黏性会话:关闭,可以自定义配置
- 外网访问:关闭,可以自定义配置
- git服务:git@git.cloudscape.sohu.com:cs/cstest.git,据了解后续会开启git push自动部署功能。
- 自动调度:开启,可以自定义规则引擎,这个比较牛逼,目测国内paas还没有支持到这点的。</span>
笔者发现,
如果我们没有上传程序包,它会根据我们创建应用选择的运行环境提供一个默认的程序包放到应用的版本1中。
启动之后,访问域名 http://cstest.sohuapps.com就能看到一个很简单的hello world!
--------------------------------------------------
二、详解代码包
经过比较深入的了解,代码包结构首先无论哪种语言都只能是zip包的结构,解开之后的标准目录如下:
不难发现,有这样几个文件或者目录:
app.yaml | 文件, 承载整个app运行的核心配置文件 |
app | 项目运行的核心代码目录 页面代码目录,对于Java,是WEB-INF所在的目录; 对于PHP, 是PHP页面所在目录。 |
conf | 个性化配置目录; 包括,nginx server段自定义配置、nginx server段自定义配置、自定义host配置等 |
bin | 用户自定义脚本目 |
然后,我要重点剖析一下这个app.yaml文件,它的配置有无、是否正确、具体参数设置直接决定app的 运行状况和监控状态。
对于搜狐云景paas上提供的八种运行环境,它们的app.yaml配置都是不一样的,甚至 于python与python on webpy的app.yaml配置都是不一样的。
下面我对于云景提供的六种语言,八类环境的配置进行详细介绍,并为每个运行环境提供一个可运行的模板程序包,为大家提供参考。
2.0 全部参数
首先贴上一张提供的所有参数配置,但并不是每个运行的语言都能使用。
2.1 Java on jetty
- appid: 666666666
- start: $JETTY_START
- tcp_health: false
- tcp_health_port: [8001, 8002]
- try_restart: {fall: 10, enable: true}
- web_health: true
- web_health_conf:
- path: /
- success: [200, 201, 403, 301, 302]
- timeout: 500ms
2.2 Java on resin
[plain] view plaincopy
- appid: 666666666
- start: $RESIN_START
- tcp_health: false
- tcp_health_port: [8001, 8002]
- try_restart: {fall: 10, enable: true}
- web_health: true
- web_health_conf:
- path: /
- success: [200, 201, 403, 301, 302]
- timeout: 500ms
2.3 Java on tomcat
[plain] view plaincopy
- appid: 666666666
- start: $TOMCAT_START
- tcp_health: false
- tcp_health_port: [8001, 8002]
- try_restart: {fall: 10, enable: true}
- web_health: true
- web_health_conf:
- path: /
- success: [200, 201, 403, 301, 302]
- timeout: 500ms
2.4 PHP
[plain] view plaincopy
- appid: 666666666
- start: $PHP_FPM_START
2.5 LUA
[plain] view plaincopy
- appid: 666666666
- start: $LUA_START
2.6 NODEJS
[plain] view plaincopy
- appid: 666666666
- web_health: true
- web_health_conf:
- path: /
- timeout: 500ms
- success: [200,201,403,301,302]
- try_restart:
- enable: true
- fall: 10
- start: $NODEJS $USER_DIR/app/main.js
2.7 PYTHON
[java] view plaincopy
- appid: 666666666
- start: $UWSGI_START
2.8 PYTHON with WEBPY
[plain] view plaincopy
- appid: 666666666
- start: $PYTHON $USER_DIR/bin/main.py 8080
- try_restart: {fall: 10, enable: true}
- web_health: true
- web_health_conf:
- path: /
- success: [200, 201, 403, 301, 302]
- timeout: 500ms
2.9 RUBY ON RAILS
- appid: 666666666
- web_health: true
- start: /opt/apps/ruby/bin/unicorn_rails -c /opt/src/app/unicorn.rb -D
- stop: kill $(cat /opt/conf/unicorn.pid)
总结一下,
三、高级进阶
提供语言支持太多,不能面面俱到,下面以java为例,介绍一下搜狐云景提供的一些高级功能。
3.1 日志输出
- log4j.rootCategory=INFO,FILE
- log4j.appender.A1=org.apache.log4j.ConsoleAppender
- log4j.appender.A1.layout=org.apache.log4j.PatternLayout
- log4j.appender.A1.layout.ConversionPattern=[%d{yyyy-MM-dd HH\:mm\:ss}]%-5p %c(line\:%L) %x-%m%n
- log4j.appender.FILE=org.apache.log4j.DailyRollingFileAppender
- log4j.appender.FILE.Threshold = INFO
- log4j.appender.FILE.File=${LOG_FILE}
- log4j.appender.FILE.layout=org.apache.log4j.PatternLayout
- log4j.appender.FILE.layout.ConversionPattern=[%d{yyyy-MM-dd HH\:mm\:ss}]%-5p %c(line\:%L) %x-%m%n
哈,是不是很简单呢。
- Logger log = LoggerFactory.getLogger(LogTest.class);
- log.info("info| " + Thread.currentThread().getName() + " is running!");
- log.warn("warn| there is some warning messages");
- log.debug("debug| I am doing system debug");
- log.error("error| sorry ,some errors happend!");
- log.trace("trace| unknown messages following!");
3.2 服务使用
- //(a)、获取redis服务列表
- static List<RedisInstanceNode> getNodes(String uid, String password) throws ServiceException {
- Map<String, String> params = ParamUtils.getDefaultParams();
- params.put("uid", uid);
- params.put("password", password);
- String endpoint = "http://internal.cloudscape.sohu.com";
- String action = "/redis/service_instance/nodes";
- String url = endpoint + action;
- int timeout = HttpUtils.getRestTimeout();
- if (httpService == null) {
- httpService = new HttpServiceImpl();
- }
- HttpService.HttpResult result = httpService.httpGet(url, params, timeout);
- String info = result.getResult();
- Map<String, JsonNode> res = JsonUtils.readValueAsJson(info);
- JsonNode nodesJson = res.get(ApiKeys._nodes);
- if (nodesJson == null || nodesJson.isNull()) {
- log.info("open api return error message, appinfos is empty , code: " + result.getCode() + ", message: "
- + res.get(ApiKeys._message));
- return Collections.emptyList();
- }
- List<RedisInstanceNode> list = (List<RedisInstanceNode>) JsonUtils.readValueAsList(
- JsonUtils.writeValueAsString(nodesJson), ArrayList.class, RedisInstanceNode.class);
- return list;
- }
- (b)、根据返回的实例nodes列表构建redis 连接池,笔者使用了强大的jedis。
- private static ShardedJedisPool pool;
- for (RedisInstanceNode redis : nodes) {
- String ip = redis.getIp();
- int port = redis.getPort();
- int master = redis.getIsMaster();
- JedisShardInfo jsi;
- if (master == 1) {
- jsi = new JedisShardInfo(ip, port, "master");
- jsi.setPassword(key);
- jsi.setTimeout(3600000);
- shards.add(jsi);
- } else {
- continue;
- }
- }
- JedisPoolConfig jpc = new JedisPoolConfig();
- jpc.setMaxActive(500);// 最大活动实例数目
- jpc.setMaxIdle(200);// 最大停止实例数目
- jpc.setMaxWait(5000);// 最大等待时间
- jpc.setTestOnBorrow(false);
- pool = new ShardedJedisPool(jpc, shards);
- //(c)、使用连接池,进行数据set与get
- try {
- jedis = pool.getResource();
- jedis.setex("test-key", defaultTimeout, "test-value");
- } catch (Exception ex) {
- log.error(ex.getMessage(), ex);
- if (jedis != null) {
- pool.returnBrokenResource(jedis);
- }
- } finally {
- if (jedis != null) {
- pool.returnResource(jedis);
- }
- }
好了,这样就能使用redis服务了,其余的几类服务类似吧。
3.3 ssh登录
可以看到可以为每个实例单独的开启SSH管理功能,这就相当于是个VPS拉,前提是要上传了公钥之后才能使用这么强大的功能。
不过,别失望,很多命令是不能使用的哦,看来是对命令进行了精简呢。不过这已经是很强大了,进去能看到我们的自己的日志了和进程等信息。
- 1、很抱歉,ssh的管理功能不能每个实例都能打开,最多只能起两个,好在可以关闭,自己能*切换。
- 2、然后,其停止和卸载app的地方隐藏的很深啊,类似于github上的要delete一个项目一样,要深层隐藏,可能为了确保用户不误操作吧。
- 3、配置app.yaml比较麻烦,有个模板对应改是好点的。
- 4、服务开放的虽然基本的够用,但是还是少了点,像很多cdn呐,mongodb啊,存储类的服务都没有,期待很快开放。