<<上篇 | 首页 | 下篇>>

常用旅游英语口语

 路试常用英语大全

 

Good Morning Sir/Madam 先生/女士 早晨好 

Good Afternoon 午安

How are you? 你好么

Do you speak English? 你讲英语吗?

I can speak a little English. 我可以讲一点英语

Please speak slowly. 请慢慢讲

Would you mind speak louder please? 请讲大声一些

Do you wear glasses? 你有戴眼镜么?

I wear contact lenses. 我戴隐型眼镜

Do you live at same address? 你住在上述地址么?

Do you have any medical problem? 你的健康有问题么?

Do you have any question? 你有什么问题么?

You must obey all the rules and traffic signs.你要遵守所有的交通规则和标志

Please sign your name here. 请在这里签名

Are you ready now? 你准备好了么?

Turn on the engine (car). 点火

Let's go. 现在开始

Right turn. 右转

Left turn. 左转

Go straight/keep moving straight. 直行

First street right turn/left turn. 第一条街右转/左转

Traffic light right turn/left turn. 交通灯右转/左转

Stop sign, make a right turn/left turn. 停牌右转/左转

Stay in this lane. 保持在这条线路行驶

Second street. 第二条街

Turn on the headlights. 开车头灯

Turn on the wind shield wiper. 开雨刷

Right of way. 优先权

Stop the car here. 在这里停车

Pull over the curb. 靠路边停车

Slow down 慢驶

Three point turn. 三点调头

Parallel parking. 平行泊车

Up hill parking. 上坡泊车

Down hill parking. 下坡泊车

Back up. 后退

Back into the driveway. 倒车进入车道

Too close. 太接近

Too slow. 太慢

Too fast. 太快

Speed up . 加速

Give your signal. 打灯号

Cancel your signal. 取消灯号

Try again. 再试一次

Watch for pedestrians. 注意行人

Take it easy/relax please. 请不要紧张

More gas. 加油

Follow the car. 跟着前车

Go back to the test centre. 回考试中心

Entrance. 入口

Exit 出口

Intersection 十字路口

Put on your seat belt. 放安全带

Parking brake . 手刹

Turn on the heater/air conditioner. 打开暖气/冷气

Head in parking/drive in . 车头进泊车

Back in parking. 后退泊车

Turn off the engine. 关闭引擎

You failed. 你不合格

Do you have any identification? 你有证件么

You passed. 你通过

Try again. 下次再试

阅读全文……

标签 : , ,

探查 JDBC Multipool 问题

负载平衡算法
采用负载平衡算法的 MultiPool 以 Round Robin 方式提供其连接,各连接在为其定义的所有 JDBC 连接池之间均匀分布。如果对某个连接的连接测试失败,MultiPool 会尝试从列表中的下一个池中提供连接。以下位置提供了更多详细信息:http://e-docs.bea.com/wls/docs81/jdbc/programming.html#1023962 (English)。

因此,负载平衡既具有在若干个池间分配负载的长处,又能够在其中一个池不可用时提供一定程度的 Failover 能力。不过,如果采用负载平衡算法,将无法控制 MultiPool 响应来自其列表中不同池的连接请求的顺序及其 Failover 的目标池。

MultiPool 的限制
若要为 MultiPool 启用高可用性算法,需要考虑一些限制和前提条件。http://e-docs.bea.com/wls/docs81/jdbc/programming.html#1068130 (English) 中提供了详细信息。下面是对上述要点的总结:
  • 启用 JDBCConnectionPool 上的 TestConnectionsOnReserve(MultiPool 的一部分),以便 MultiPool 可以检测到连接失败及 Failover 到列表中下一个 JDBC 连接池的必要性。
     
  • MultiPool 的名称在域配置内必须是唯一的。不应以相同名称命名 JDBC 连接池和 MultiPool,因为那样会导致 Failover 故障。
     
  • 如果第一个池中的所有连接都处于使用状态,MultiPool 将不会从列表中的下一个池提供连接。只有在 MultiPool 配置中的 JDBC 连接池的数据库发生故障或某个池被暂停使用时,才会提供 Failover。
    不过,WebLogic Server 8.1 SP3 及更高版本中添加了一个新属性FailoverRequestIfBusy,可以通过该属性配置 MultiPool,从而实现当某个池中的所有连接都处于使用状态时,从列表中的下一个池中提供连接。WebLogic Server 版本 8.1 SP3 及更高版本中针对 MultiPool 的增强功能中对此有更为详尽的描述。
     
  • 当某个应用程序从 MultiPool 中得到了一个连接后,在该应用程序使用该连接期间,将不再为该连接执行 Failover。这是因为 MultiPool 在连接测试期间调用 getConnection() 时检测到连接失败。后面阶段出现的数据库故障需要由应用程序处理,其步骤与用于正常 JDBC 连接池的步骤相同。由于数据库崩溃或关闭时会将事务回滚,因此应用程序需要对这种情况进行处理,并重新执行相关工作。

 

java.sql.SQLException: Pool connect failed :
weblogic.common.ResourceException: testMultiPool(myMultiPool):
weblogic.common.resourcepool.ResourceLimitException: No resources currently available in pool myMultiPool to allocate to applications, 
please increase the size of the pool and retry..
at weblogic.jdbc.common.internal.JDBCUtil.wrapAndThrowResourceException(JDBCUtil.java:160)

阅读全文……

Using Multi Data Sources with Oracle RAC - 11g Release 1 (10.3.6)

Attributes of a Multi Data Source

The multi data source may have the following attributes, depending on the role of Oracle RAC in your system—load balancing or failover:

  • AlgorithmType="Load-Balancing" or AlgorithmType="Failover"

    With the Load-Balancing option, connection requests are distributed among available data sources; with the High-Availability option, connection requests are served by the first available pool in the list. When a data source becomes defunct, connection requests are served by the next data source in the list.

  • FailoverRequestIfBusy="true"

    With the Failover algorithm, this attribute enables failover when all connections in a data source are in use.

  • TestFrequencySeconds="120"

    This attribute controls the frequency at which WebLogic Server checks the health of data sources previously marked as unhealthy to see if connections can be recreated and if the data source can be re-enabled. For more details see Chapter 5, "Configuring JDBC Multi Data Sources."

    For fast failover of Oracle RAC nodes, set this value to a smaller interval, for example, 10 (seconds).

     

 

阅读全文……